home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Best of Shareware
/
Best of PC Windows Shareware 1.0 - Wayzata Technology (7111) (1993).iso
/
mac
/
ZIPPED
/
DOS
/
UTILITY
/
SRCH33.ZIP
/
FINDFILE.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-10-17
|
659b
|
28 lines
@echo off
rem This batch file may produce errors if running DOS older than v5.0
if not "%1" == "" goto findfile
echo.
echo File Finder: searchs current drive for files
echo.
echo Usage: findfile [file pattern]
echo.
echo where [file pattern] is a Unix-style (shell) file pattern.
echo (If you are not familiar with Unix, you'll find that a DOS
echo file pattern will usually produce the same results.)
echo.
echo Uses SRCH file searching utility, a shareware utility
echo by Jeff Dean. See SRCH.DOC for more documentation.
goto exit
:findfile
rem Search using specified pattern(s) on current drive
srch -dm"%1" "" \
:exit